home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 53 / PC Actual CD 53.iso / Share / Progra / python / BeOpen-Python-2.0.exe / IDLE.PY < prev    next >
Encoding:
Python Source  |  2000-09-28  |  226 b   |  13 lines

  1. #! /usr/bin/env python
  2.  
  3. import os
  4. import sys
  5. import IdleConf
  6.  
  7. idle_dir = os.path.dirname(IdleConf.__file__)
  8. IdleConf.load(idle_dir)
  9.  
  10. # defer importing Pyshell until IdleConf is loaded
  11. import PyShell
  12. PyShell.main()
  13.